home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 1.iso / games / omywd1e.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-05-03  |  806b  |  44 lines

  1. @rem If you don't use install, copy the .DLLs and .VBXs to your WIndows
  2. @rem  subdirectory if they don't already exist.
  3. @echo off
  4. if %1!==! goto how
  5. if %2!==! goto how
  6. if %3!==! goto how
  7. if not exist %3\win.com goto badwin
  8. goto goodwin
  9. :badwin
  10. Echo your Windows subdirectory is not %3, please check and install again
  11. echo.
  12. echo.
  13. echo.
  14. echo.
  15. echo.
  16. goto how
  17. :goodwin
  18. if not exist %2 md %2
  19. xcopy %1\*.* %2
  20. if not exist %3\vbrun200.dll xcopy vbrun200.dll %3
  21. if not exist %3\ddeml.dll xcopy ddeml.dll %3
  22. xcopy %2\*.vbx %3
  23. goto end
  24. :how
  25. Echo Install [source drv:\subdir] [destination drv:\subdir] [Windows drv:\subdir]
  26. echo.
  27. Echo Example "install B: c:\ohmyword c:\windows"
  28. echo.
  29. echo.
  30. echo.
  31. echo.
  32. echo.
  33. echo.
  34. echo.
  35. echo.
  36. echo.
  37. echo.
  38. echo.
  39. echo.
  40. echo.
  41. echo.
  42. echo.
  43. :end
  44.